C# Dictionary用法


var periodMapping = new Dictionary<string, int>
{
    {"第1節",0},
    {"第2節",1},
    {"第3節",2},
    {"第4節",3},
    {"1OT",4},
    {"2OT",5},
    {"3OT",6},
};

前面是key後面是value
只要用periodMapping[key]就能找到value

#C# #Winform







你可能感興趣的文章

API 簡介與實戰練習

API 簡介與實戰練習

Java 學習筆記 01 – 開發環境

Java 學習筆記 01 – 開發環境

get this data in v-for

get this data in v-for






留言討論